Twitter Media Downloader
2025-04-28
三日前ぐらいからかな、動かなくなった
以下古い情報
俺の環境ではまだ動く
スクリプトに// @match https://x.com/*を加えればxに変わってもまだ動く
code:fix.js
//let tweet_entrie = tweet_detail.data.threaded_conversation_with_injections_v2.instructions0.entries.find(n => n.entryId == tweet-${status_id}); この行を以下2行に変更 const objectsWithEntries = tweet_detail.data.threaded_conversation_with_injections_v2.instructions.find(obj => obj.hasOwnProperty('entries'));
let tweet_entrie = objectsWithEntries.entries.find(n => n.entryId == tweet-${status_id});
constになってるけど動くからたぶん大丈夫